CONCATENATE
Combines multiple text strings into one text string.
Syntax
expression.CONCATENATE(arg_n);
expression
- A variable that represents a ApiWorksheetFunction class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
arg_n | Required | ApiRange | ApiName | string |
Returns
string
Example
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.CONCATENATE("John", " ", "Adams"));